本文主要是介绍PTA 7-14 计算职工工资,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
给定N个职员的信息,包括姓名、基本工资、浮动工资和支出,要求编写程序顺序输出每位职员的姓名和实发工资(实发工资=基本工资+浮动工资-支出)。
输入格式:
输入在一行中给出正整数N。随后N行,每行给出一位职员的信息,格式为“姓名 基本工资 浮动工资 支出”,中间以空格分隔。其中“姓名”为长度小于10的不包含空白字符的非空字符串,其他输入、输出保证在单精度范围内。
输出格式:
按照输入顺序,每行输出一位职员的姓名和实发工资,间隔一个空格,工资保留2位小数。
代码:
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
typedef struct employee
{char name[10];float cl;float uncl;float out;float result;
};
int main()
{int n;cin >> n;struct employee a[100];for(int i=0;i<n;i++){cin >> a[i].name >> a[i].cl >> a[i].uncl >> a[i].out;}for(int i=0;i<n;i++){a[i].result=a[i].cl+a[i].uncl-a[i].out;}for(int i=0;i<n;i++){printf("%s %.2f\n",a[i].name,a[i].result);}return 0;
}
更正代码:
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
typedef struct employ
{char name[10];float cl;float uncl;float out;float result;
};
int main()
{int n;cin >> n;struct employ a[1000];for(int i=0;i<n;i++){cin >> a[i].name >> a[i].cl >> a[i].uncl >> a[i].out;}for(int i=0;i<n;i++){a[i].result=a[i].cl+a[i].uncl-a[i].out;}for(int i=0;i<n;i++){printf("%s %.2f\n",a[i].name,a[i].result);}return 0;
}
问题:
第一次命名结构体名字为employee判题结果为 段错误 ,但是改为employ就正确,不是很清楚中间的原理 有大佬解答一下嘛 感谢!
这篇关于PTA 7-14 计算职工工资的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!