100 likes | 116 Views
Learn how to start Visual Studio 2008 or 2010 and create a new command-line program. This tutorial can also be applied to Visual Studio 2013. Follow the step-by-step instructions to create and run your program.
E N D
How to startVisual Studio 2008 or 2010(command-line program) Can be applied to Visual Studio 2013
1.Select console application 2.Insert project name 3.Click OK
Visual Studio 2008Creating Command-Line Program 5. Select 4.Click “Next” 6.Click “Finish”
Visual Studio 2008Creating Command-Line Program ex1-1.c 7.Click Mouse-right-button 8.Insert the name of C source file “ex1-1.c”
Exercise 0 • Run your Visual Studio 2008 or 2013. • Create a new “project” and add a new C file to the project. • Write following simple C code • Build (F7) • Execute (Ctrl F5) #include <stdio.h> int main() { printf(“Hello C Programming!\n”); return 0; }
1(a). Write a program that will obtain the length and width of a rectangle from the user and compute its area and perimeter. (Use float type for all variables.) Output Example : 1.4 2.1 (------- keyboard user input) 2.940000 , 7.000000
1(b). Write a program that reads in the radius(반지름) of a circle and prints the circle’s diameter(지름), circumference(둘레), and area(면적). Use the constant value 3.14159 for PI. #include <stdio.h> int main() { float radius, diameter, circumference, area; // put your code here // use scanf to get the value of radius // use printf to display the result of calculation. } Output Example : Get radius? 3.5 diameter = 7.000000 , circumference = 21.991130 , area = 38.484477
2. Write a program to convert a temperature in degrees Fahrenheit to degrees Celsius. Celsius = 5.0 / 9.0 * (fahrenheit – 32) Output Example : 105.3 (------- keyboard user input) 40.722225