安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
#include <inttypes.h>
void add_book(char *title_p, char *author_p, int16_t *price_p, int16_t *bookcounter_p){
printf("\nBuchtitel?: "); scanf("%s", title_p); scanf("%c"); //scanf's 2nd parameter is the adress of the variable to store in,
printf("Autor?: "); scanf("%s", author_p); scanf("%c"); //that's y the pointers are given directly
printf("Preis?: "); scanf("%d", price_p); scanf("%c");
*bookcounter_p += 1; //*bookcounter_p++; seemingly doesn't work
}
void show_list(int16_t *bookcounter_p, book_t *books_p){
for(uint8_t i = 0; i < *bookcounter_p; i++){
printf("\nBuch %d: %s von %s, (%d Euro)\n", (i+1), books_p .title, books_p .author, books_p .price);
}
}