formatted-input

    -2熱度

    2回答

    我已經創建了一個.txt文件,其中包含產品名稱,描述和數量的列表。 例如,如: 100 Plus , Sports Drink , 12 Sprite , Citrus Drink , 5 Dutch Lady, Milk, 8 我希望將這些信息分配到三個變量,這是string name,string description和int quantity 我曾嘗試使用類似while(product >

    3熱度

    4回答

    提取混合格式爲什麼我的程序不輸出: 10 1.546 ,Apple 1 代替 10 1 <empty space> 這裏是我的程序: #include <iostream> #include <string> #include <sstream> using namespace std; int main() { string str = "10,1.546,

    2熱度

    2回答

    我正在嘗試編寫一個程序,該程序可以讀取文本文件,並將其中的每個單詞存儲爲字符串類型向量中的條目。我確信我做錯了這件事,但自從我試圖這樣做以來,我已經忘了它是如何完成的。任何幫助是極大的讚賞。提前致謝。 代碼: #include <iostream> #include <fstream> #include <vector> #include <string> using namespace

    -1熱度

    1回答

    我有形式 0.547,0.797,2.860,1.398,Sharp-Right-Turn 0.541,0.786,2.373,1.919,Sharp-Right-Turn 0.549,0.784,2.370,1.930,Sharp-Right-Turn 0.983,0.780,2.373,1.701,Move-Forward 0.984,0.780,2.372,1.700,M

    0熱度

    1回答

    我有以下格式的包含數據的輸入文件。 65910/A 22 9 4 2 9 10 4 1 2 5 2 0 4 1 1 0 65910/T 14 7 0 4 8 4 0 2 1 2 0 0 1 1 1 1 . . . 我需要採取的輸入,其中第一線是%d和%c利用其間的/和接下來的四線作爲4x4整數矩陣的組合。我需要在矩陣上執行一些工作,然後用標題信息標識它們。 如何在MAT

    0熱度

    3回答

    我有一個程序,簡單地計算阿克曼功能: #include <iostream> // Ackermann function calculations unsigned int ackermann(unsigned int m, unsigned int n){ if(m == 0) return n+1; if(n == 0) return acke

    0熱度

    1回答

    工作一次後,循環不會爲字符串menuitem輸入。但它適用於menuprice。 struct menuItemType { char menuitem[30]; float menuPrice; }; void getdata(menuItemType menulist[], int items) { for (int i = 0; i < items;

    3熱度

    2回答

    我想有Python2.7打印出來漂浮在科學記數法,強行從0開始,例如點數,假設 a=1234567890e12 print '{:22.16E}'.format(a) 1.2345678900000000E+21 不過,我想打印輸出看起來像: 0.1234567890000000E+22 請注意,由於所需的輸出強制爲前導零,所以指數增加1。我怎樣才能做到這一點? 謝謝。

    0熱度

    1回答

    我有大型格式的文本文件(200 Mb),其中包含的數據對於讀取和保存很容易。格式的週期約爲72行,我想有一個包含72行模板格式的其他文件。有沒有辦法做到這一點? 理想的方式是 formatstring = fileread(templatefile) fileToRead = fopen(LargeFile,'r') while ~feof(fileToRead) object{i}

    1熱度

    2回答

    我正在製作一個程序,我向用戶詢問日期並將其與當前日期進行比較。所有的功能在那裏,但我似乎無法驗證一天,一年和一年是數字,所以輸入的信件崩潰的程序。有任何想法嗎? (注意:do while循環中的功能按預期工作) do // This do while loop forces the user to enter a valid date before moving on { c