C语言代码第二天
标签:code 代码 ima fir http mat har png cat
数据类型
代码:
#include
#include
#include
#include
int main() {
int i = 4;
double d = 4.0;
char s[] = "HackerRank ";
// Declare second integer, double, and String variables.声明第二个int ,double ,字符数组
int i1;
double d1;
char s1[200];
// Read and save an integer, double, and String to your variables.读取并保存上面输入的值
scanf("%d",&i1);
scanf("%lf",&d1);
scanf("%*[\n]%[^\n]",s1); //这里看上一篇预习的解析。
// Print the sum of both integer variables on a new line.打印两个整数的和
printf("%d\n",i+i1);
// Print the sum of the double variables on a new line.打印两个浮点数的和,并控制输出位数
printf("%.1lf\n",d+d1);
// Concatenate and print the String variables on a new line.连接两个字符串(考虑拼接函数)
printf("%s%s\n",s,s1);
// The ‘s‘ variable above should be printed first.
return 0;
C语言代码第二天
标签:code 代码 ima fir http mat har png cat
原文地址:https://www.cnblogs.com/chen-le23/p/13640559.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
C语言代码第二天
文章链接:http://soscw.com/index.php/essay/68865.html
评论