C++ :: Input A Name Horizontal And Display Output In Vertical Position
Feb 9, 2013
Program that input a name horizontal and display the name in vertical position using looping any kind of looping?
EX.
INPUT:Enter A name:John
OUTPUT:
J
O
H
N
View 3 Replies
ADVERTISEMENT
Feb 21, 2013
How to fix this when i run the program and enter my name then output my name in vertical position using the for loop and press enter the program do not stop
#include<stdio.h>
#include<conio.h>
#include<dos.h>
main() {
char name,n;
clrscr();
printf("Enter Your Name:");
scanf("%c",&name);
[Code] ....
View 3 Replies
View Related
Aug 16, 2013
im trying to code a simple list box for my self made GUI but i seem to be stuck at the scroll bar. I already finished with the calculation for the scroll bar size but how I could calculate it's current vertical position depending on the current item on top of the list box.
My current code looks like this
ListBox struct:
struct MenuListBox {
int PosX;
int PosY;
int Width;
int ItemsVisible; //Items visible at the same time
int CurrentItem;
[code]....
Additional vars in the menu class:
MenuListBox* MenuListBoxes;
int ListBoxCount;
How could i calculate this:
New->CurrentScrollBarPosY = ; ?
View 15 Replies
View Related
Feb 4, 2013
Code:
#include <stdio.h>
main() {
int c, n1;
n1 = 0;
while ((c = getchar()) != EOF)
if (c == '')
++n1;
printf("%d", n1);
}
I have a more complicated program I'm wishing to have display the output, however, to save some time I'm using an example of a shorter version. count the lines in input and display the output in terminal when ./program is executed after compilation. To count and compute lines, words and within arrays.
View 4 Replies
View Related
Nov 23, 2013
I used VB6 before to output file.
I set my output to file to tab(20) or tab(45) respectively.
In C++, how do I do this?
View 4 Replies
View Related
Apr 2, 2013
Write a program that prompts the user for the x and y coordinates of a point on the x-y plane, and then displays the position of that point in polar coordinates.
The program must execute via a function ‘polar’ that is called from the main function. This function accepts x & y coordinates as input value parameters, and then returns, through reference parameters, the polar coordinate position of the point (r and theta).
Could in theory be written entirely in the main function; however, to meet the problem statement the code must include a user defined function that returns polar coordinates to the main function via reference parameters.
Some programming hints:
(i)Reference parameters are declared using an ampersand after the declaration type: for example – ‘int& number’ declares a reference parameter ‘number’ of type ‘integer’.
(ii)You’ll need the cmath library for arctan and sqrt functions. The C++ syntax for the arctan function is “atan(x)”.
(iii)The C++ arctan function returns an angle in radians. For output to the screen convert the angle theta from radians to degrees.
(iv)Program should work for x, y values in all four quadrants of the x-y plane.
View 4 Replies
View Related
Jul 8, 2014
I try to find charecter position but evey time i run my program it give me 0 position why ? Why in my getChar function give me warning statement with no effect i can not understand this warning where is my mistake.
Code:
void getChar(const char* str){
int lenStr = strlen(str);
int i = 0;
int posCharecter = 0;
printf(" %s has %d charecters length
",str,lenStr);
[Code] .....
View 2 Replies
View Related
Feb 26, 2013
I am new to grpahics progamming in/under Borland C. I have included the "graphics.h" header file but i am unable to take input on the screen. If I try to move my cursor to a specified position using gotoxy() function the pointer doesnt moves to the specified location and starts taking input at (1,1) coordinate.
View 1 Replies
View Related
Oct 18, 2014
i want to find the position of the first string in input.txt that matches a regex
// Input.txt
[A-Z]o
Hello everyone, i am John It is rainy today
// Here is my code
string temp; // Store "Hello everyone, i am John
//It is rainy today"
temp.resize(500);
char REGEX[500];
FILE *fi;
[Code]....
View 5 Replies
View Related
Mar 4, 2013
What I have to do is write a small program in C++ to parse the symbols that are used on 5 different lines of text in each position until position 30 is reached on each line. The goal of the parsing program is to interpret the symbols (characters), if there are any per each position, on the 5 lines of text in order to output the actual data that the group of symbols represents.
My question for is this: Is there anything special from a C++ environment that should go in to something like this outside of using standard stuff like the math associated with the search algorithm that has to happen here? The symbols are located in a file, so I know I have to include "iostream" and a few other headers. But outside of header inclusions and the code necessary to iterate and streamline the search and interpretation process, am I missing anything special that I couldn't otherwise find through simple google searches?
View 6 Replies
View Related
Oct 4, 2014
I want to show my output in one line. But my output breaks to next line even before endl is encountered.code blocks horizontal scroll bar in console? is it c++ formatting issue or console issue?
View 3 Replies
View Related
Sep 3, 2013
I would like the coded ASCII image to scroll horizontally 3 times and then end with the message:
"Hit Enter to continue or Esc to end"
If Enter is pressed, the program should then continue to scroll another 3 times and then display the same message above.
If Esc is hit then the program loop should stop similar to an escape sequence.
Here is my code that partially accomplishes my objective:
Code:
// Professor.cpp : The entry point for the console application.
#include <iostream>
#include <string>
#include <windows.h>
#include <stdlib.h>
[Code] .....
View 3 Replies
View Related
Mar 19, 2015
So I'm trying to generate a very specific list of numbers, but I can't get output to actually display.
#include <stdio.h>
int num[30000];
int num2[30000];
int num3[30000];
int num4[30000];
int diff2[29999];
[code]....
View 3 Replies
View Related
Apr 23, 2015
In a SDI app, I constraint the mouse to move only an horizontal direction, if "Shift" key is pressed ... here is the code:
Code:
void CTestMouseView::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) {
// TODO: Add your message handler code here and/or call default
if(GetKeyState(VK_SHIFT) < 0) {
CRect rect;
GetWindowRect(&rect);
GetCursorPos(&m_point);
[Code] ....
Nothing complicated, and it works well ... except one thing: when I press the shift key and the mouse is moving by SetCursorPos, is moving pretty slow ... why ? I can not figure out why ! For testing, I attached the test project ...
View 13 Replies
View Related
Nov 21, 2013
how to display an image on the output screen of c++ program.
I am using : Turbo c++(dos box) on win8
View 1 Replies
View Related
Sep 17, 2013
how to insert an image to display in output on c++..
View 3 Replies
View Related
Aug 8, 2014
I am currently doing a complex number calculator ,and i wish to output my data to a txt.file . i tried fstream and it doesnt work. However the txt.file was created but no text was output.
Below is the program:
#include<iomanip>
#include<cmath>
#include<iostream>
#include<fstream>
using namespace std;
#define PI 3.14159265358979323
double z,x;
[Code]..
When impedance A & B are in series,the effective Impedance is " <<setprecision(4)<< z << " + j" <<setprecision(3)<< x<<endl;
else
cout << "
When impedance A & B are in series,the effective Impedance is " <<setprecision(4)<<z << " - j" <<setprecision(3)<< x*(-1)<<endl;
}
void Complex::showdiv(double &z,double &x) {
if ( x>= 0 )
cout << "
When impedance A & B are in parallel,the effective Impedance is " <<setprecision(4)<< z << " + j" <<setprecision(3)<< x <<endl;
else
cout << "
When impedance A & B are in parallel,the effective Impedance is " <<setprecision(4)<<z << " - j" <<setprecision(3)<< x*(-1) <<endl;
}
class Polar:public Complex //inheritant from class Complex
{
protected:
double r,d,r2,d2;
public:
void PolarValue();
void ShowPolar();
[Code]...
View 6 Replies
View Related
Dec 9, 2014
I was wondering if it's possible to display output message without using console.write or any console function
View 7 Replies
View Related
Apr 10, 2014
I am creating a matching game, using US States and a 2-dim array.
As you can see, when the below code runs, some of the grid tiles appear offset, and when selected by pressing spacebar, do not appear.
Here is the .h file:
#include "stdafx.h"
#include <iostream>
#include <cstdlib>
[Code]....
View 3 Replies
View Related
Dec 9, 2013
How do i display the output ? This program only saves the output to "gpa.txt" I want it to also display the output to cmd.
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cmath>
#include <string>
using namespace std;
const int SIZE = 10;
[Code] ....
View 1 Replies
View Related
Apr 7, 2014
I'm supposed to read a text file and display it in the output. I have it down except my formatting. I just cannot get it to just skip one line rather than multiple. I know why though because my char has a max of 11 and if I put a character lets say mango, it is going to fill in the rest with white spaces. It's supposed to display like this:
Mango
Strawberry
Grapes
But instead I get something like this
Mango
Melon
Grapes
I am using isspace but it's not working.
//source code
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <cmath>
#include <fstream>
using namespace std;
class CFile
[Code] ....
View 5 Replies
View Related
May 17, 2014
The code is supposed to display the total and averages of the data as well, but cuts off due to an error in the code.
Since this code is quite lengthy, I will be breaking it up into two posts.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
[Code].....
View 6 Replies
View Related
Nov 14, 2014
I have been stuck at a dead end,I got it to display a single asterik for an inputted number, but how would i go about in adding that asterik for each number?
my code is the following
int userinput = int.Parse(InputOutput.GetInput("Enter values into array"));
Int32[] inputChoices = new Int32[9];
for (int x = 0; x < inputChoices.Length; x++) {
inputChoices[x] = 0;
} if (userinput == 1)
[Code]...
View 2 Replies
View Related
Apr 5, 2013
If the user puts in a 6. I need the array to display the even number from 0 - 6. Right now what it does is it displays the first six even numbers. Okay as I'm writing this I'm starting to see where my problem might be..
Code:
void sumIntegers () {
int arr[50];
int i = 0;
int num = 0;
int sum = 0;
[Code] .....
View 1 Replies
View Related
May 16, 2014
The code is supposed to display the total and averages of the data as well, but cuts off due to an error in the code. The code should also:
1)Print checks for all employees, one per page, sorted by lastname. The first check number, 100, is to be read from a company data file (see requirement 4). The border of each check is important and should not be omitted.
2)Convert the net pay to a text string for each check printed.
3)Print a reference code on each check. The reference code is obtained by combining the first letter of the lastname with all the consonants remaining after removing all vowels (a,e,i,o,u).
4)Use the same employee data found in assignment 2. Use company data, obtained from a text file, for each check printed:
Spoiler
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
typedef short BOOLEAN;
typedef char STR15[15 + 1];
typedef char STR10[10 + 1];
typedef struct PayRecord
[Code] .....
View 14 Replies
View Related
Mar 6, 2015
Scaling the yaxis on my histogram for one of my class projects. I've gotten mostly everything but stuck on scaling. I'm pretty sure it's something simple to do, but I'm having trouble, and I've tried everything to my knowledge to get it scaled from 0.1 - 1, like this:
Here is my code:
#include<stdio.h> //include all preprocessor directives
#include<Windows.h>
int main(void) {
int MAX = 0; //initialize and declare variables
int allcounts [10] = {0}; //store an array of integers for
int yaxis, xaxis = 0;
[Code] ....
I'm close, but every time I try and change my y axis in the for loop from 1 going down to 0.1, it doesn't give me a right output.
View 2 Replies
View Related